@charset "UTF-8";
.body_usuario {
  background: linear-gradient(135deg, #0d6efd, #003a75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.body_recuperar {
  background: linear-gradient(135deg, #0d6efd, #003a75);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

._recuperar {
  border-radius: 12px;
  padding: 25px;
}

.btn-botao_enviar {
  width: 100%;
}

.logo_recuperar {
  width: 70px;
  margin-bottom: 15px;
}

#mainContainer {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

#mainContainer.show {
  opacity: 1;
  transform: translateY(0);
}

/* Efeito bonito no ícone */
.icon-glow {
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
}

.body_cliente_home {
  font-family: "Poppins", sans-serif;
  background: #fff;
  overflow-x: hidden;
  transition: 0.3s ease-in-out;
}

.hero {
  height: 85vh;
  background: url("https://images.pexels.com/photos/3993449/pexels-photo-3993449.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Serviços */
.service-card:hover {
  transform: translateY(-8px);
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Fade animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.footer_home {
  background: #222;
  padding: 40px 0;
  color: #ccc;
}